home *** CD-ROM | disk | FTP | other *** search
/ Electronic Clipper 1998 November / Electronic Clipper 1998-11.iso / Idea Source® / teaser.dir / 00074_Script_flashlight < prev    next >
Text File  |  1998-08-25  |  509b  |  31 lines

  1. on mousedown me
  2.   global flash, written, flashon  
  3.   
  4.   if flash=1 then 
  5.     cursor -1
  6.     set flash=0
  7.     set the loc of sprite 14 to point(21, 447)
  8.     if flashon=1 then
  9.       go the frame -1
  10.     else
  11.       go the frame
  12.     end if
  13.     exit
  14.   end if
  15.   
  16.   
  17.   
  18.   if flash=0 then 
  19.     cursor 200
  20.     set flash=1  
  21.   end if
  22. end
  23.  
  24.  
  25. on exitframe me
  26.   global flash  
  27.   if flash=1 then
  28.     set the locv of sprite 14 to the mousev
  29.     set the loch of sprite 14 to the mouseh
  30.   end if
  31. end